home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / misc / pcduo102.zip / @PCDUO.ZIP / BRIDGE.MD_ / BRIDGE.MD
Text File  |  1994-09-20  |  3KB  |  118 lines

  1. ; Modem file - Bridge
  2. ;
  3. ; Format of this file is:
  4. ;   @[MODEM] modem type                     ) repeat
  5. ;   @[INIT]                                 ) for each
  6. ;   modem initialisation commands           ) type of
  7. ;   @[TERM]                                 ) modem
  8. ;   modem termination commands              )
  9. ;
  10. ; Anything after a semi-colon is treated as a comment
  11. ; Blank lines are ignored
  12. ;
  13. ; Spaces are not allowed in the modem type
  14. ; Only the first part of the modem type need be specified in the /M switch
  15. ;
  16. ; A delay of 1 second is inserted after each modem command
  17. ; The ATZ command sometimes needs a longer delay
  18. ;
  19.  
  20. @[MODEM] Hayes-Compatible
  21. @[INIT]
  22. ATZ             ; software reset
  23. AT              ; wait 1 second for ATZ
  24. AT              ; wait 1 second for ATZ
  25. ATS0=1          ; enable auto answer
  26.  
  27. @[TERM]
  28. ATZ             ; software reset
  29.  
  30.  
  31. @[MODEM] Dowty-Quattro
  32. @[INIT]
  33. ATZ             ; software reset
  34. AT              ; wait 1 second for ATZ
  35. AT              ; wait 1 second for ATZ
  36. ATF0            ; allow variable link rate
  37. AT&I1           ; enable fixed rate serial comms
  38. ATS0=1          ; enable auto answer
  39.  
  40. @[TERM]
  41. ATZ             ; software reset
  42.  
  43.  
  44. @[MODEM] Hayes-Optima
  45. @[INIT]
  46. ATZ             ; software reset
  47. AT              ; wait 1 second for ATZ
  48. AT              ; wait 1 second for ATZ
  49. AT&K3           ; enable CTS/RTS, disable XON/XOFF flow control
  50. AT&Q6           ; enable automatic speed buffering (constant speed mode)
  51. ATS0=1          ; enable auto answer
  52.  
  53. @[TERM]
  54. ATZ             ; software reset
  55.  
  56.  
  57. @[MODEM] Miracom-Courier-V32
  58. @[INIT]
  59. ATZ             ; software reset
  60. AT              ; wait 1 second for ATZ
  61. AT              ; wait 1 second for ATZ
  62. AT&B1           ; enable fixed rate serial comms
  63. ATS0=1          ; enable auto answer
  64.  
  65. @[TERM]
  66. ATZ             ; software reset
  67.  
  68.  
  69. @[MODEM] Pace-Microlin-fx
  70. @[INIT]
  71. ATZ             ; sofware reset
  72. AT              ; wait 1 second for ATZ
  73. AT              ; wait 1 second for ATZ
  74. ATS0=1          ; enable auto answer
  75.  
  76. @[TERM]
  77. ATZ             ; sofware reset
  78.  
  79.  
  80. @[MODEM] Pace-Quadlink-32+
  81. @[INIT]
  82. ATZ             ; software reset
  83. AT              ; wait 1 second for ATZ
  84. AT              ; wait 1 second for ATZ
  85. AT&A1           ; automatic rate selection
  86. AT\P2           ; V42 error correction & V42bis data compression
  87. ATS0=1          ; enable auto answer
  88.  
  89. @[TERM]
  90. ATZ             ; software reset
  91.  
  92.  
  93. @[MODEM] Racal-maxam-III+
  94. @[INIT]
  95. ATZ             ; software reset
  96. AT              ; wait 1 second for ATZ
  97. AT              ; wait 1 second for ATZ
  98. AT*E0           ; disable error correction
  99. ATS0=1          ; enable auto answer
  100.  
  101. @[TERM]
  102. ATZ             ; software reset
  103.  
  104.  
  105. ; TEMPLATE FOR BRIDGE.MDM: Replace ??? with command for your modem.
  106.  
  107. @[MODEM] TEMPLATE       ; Replace Template with the name of your modem
  108. @[INIT]
  109. ATZ                     ; SOFTWARE RESET                ATZ
  110. AT                      ; WAIT 1 SECOND FOR ATZ         AT
  111. AT                      ;     "
  112. ???                     ; ENABLE HARDWARE(CTS/RTS) AND DISABLE SOFTWARE (XON/XOFF) FLOW CONTROL AT&K0
  113. ???                     ; ENABLE FIXED RATE SERIAL COMMS        AT&B1
  114. ATS0=1                  ; SET TO AUTO ANSWER (answer on first ring)     ATS0=1
  115.  
  116. @[TERM]
  117. ATZ                     ; SOFTWARE RESET        ATZ
  118.